home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 1 / CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso / Aminet / comm / tcp / AmiTCPsdk_40.lha / AmiTCP-4.0 / netinclude / ios1.h < prev    next >
C/C++ Source or Header  |  1994-10-03  |  697b  |  34 lines

  1. #ifndef IOS1_H
  2. #define IOS1_H \
  3.        "$Id: ios1.h,v 4.1 1994/10/03 20:52:20 ppessi Exp $"
  4. /*
  5.  *      Extensions to SAS/C level 1 IO definition file include:ios1.h
  6.  *
  7.  *      Copyright © 1994 AmiTCP/IP Group,
  8.  *                       Network Solutions Development, Inc.
  9.  *                       All rights reserved.
  10.  */
  11.  
  12. /*
  13.  * Include SAS/C ios1.h
  14.  */
  15. #ifndef _IOS1_H
  16. #include <include:ios1.h>
  17. #endif
  18.  
  19. /*
  20.  * Additional flag definitions for the ufbflg field
  21.  * The given value was recommended by SAS.
  22.  */
  23. #ifndef UFB_SOCK
  24. #define UFB_SOCK 0x100 /* AmiTCP/IP socket */
  25. #endif
  26.  
  27. /*
  28.  * Additional external definitions
  29.  */
  30. extern struct UFB *__allocufb(int *);
  31. #define   allocufb    __allocufb
  32.  
  33. #endif
  34.